home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
d
/
devioustools26.dms
/
devioustools26.adf
/
utils
/
010.lzx
/
SoundBox
/
Install
next >
Wrap
Text File
|
1986-05-10
|
2KB
|
92 lines
; ************************************************
; *
; * SoundBox - HD Install Script (Deutsch)
; *
; * $VER: Install-SoundBox 1.30
; *
; * Script written by Richard Körber
; *
; ************************************************
(set ToolSource "SoundBox")
(set LibSource1 "Libs/provision.library")
(set LibSource2 "Libs/reqtools.library")
(set LangSource "catalogs")
(set GuideSource "SoundBox.guide")
(set CopyLib1Prompt "provision.library kopieren?")
(set CopyLib2Prompt "reqtools.library kopieren?")
(set CopyLangPrompt "Sprachen-Kataloge kopieren?")
(set ToolDirPrompt "Wohin soll SoundBox kopiert werden?")
(set ToolCopyPrompt "Kopiere SoundBox...")
(set GuideCopyPrompt "Kopiere Anleitung...")
(message
("\nSoundBox Installation\n\n")
("Dieses Programm installiert das komplette\n")
("SoundBox-System auf Ihre Festplatte.\n\n")
("Dies ist nur die Light-Version, mit\n")
("einigen Einschränkungen. Die Vollversion\n")
("bekommen Sie als registrierter Benutzer.\n\n")
("Wie Sie sich registrieren lassen können,\n")
("lesen Sie bitte in der Guide-Anleitung.")
)
(set ToolDir (askdir
(prompt ToolDirPrompt)
(help @askdir-help)
(default "Work:")
))
(copyfiles
(prompt ToolCopyPrompt)
(help @copyfiles-help)
(source ToolSource)
(dest ToolDir)
(infos)
)
(copyfiles
(prompt GuideCopyPrompt)
(help @copyfiles-help)
(source GuideSource)
(dest ToolDir)
(infos)
)
(copyfiles
(prompt CopyLangPrompt)
(help @copyfiles-help)
(source LangSource)
(dest "LOCALE:Catalogs")
(confirm)
(all)
)
(copylib
(prompt CopyLib1Prompt)
(help @copylib-help)
(source LibSource1)
(dest "LIBS:")
(confirm)
)
(copylib
(prompt CopyLib2Prompt)
(help @copylib-help)
(source LibSource2)
(dest "LIBS:")
(confirm)
)
(message
("\nSoundBox ist nun installiert.\n\n")
("Vergessen Sie nicht, sich\n")
("registrieren zu lassen. ;-)\n\n")
("Viel Spaß!\n\n")
(" Richard Körber")
)